home *** CD-ROM | disk | FTP | other *** search
/ Belgian Amiga Club - ADF Collection / BS1 part 68.7z / BS1 part 68 / InterChange Plus v3.0 (1993-11)(Syndesis)(Disk 2 of 2).7z / InterChange Plus v3.0 (1993-11)(Syndesis)(Disk 2 of 2).adf / PC_Tools.LZH / MEXP11.ZIP / MEXP.DOC next >
Text File  |  1992-10-04  |  3KB  |  78 lines

  1.  
  2.  
  3.  
  4.                            Master Explode Ver 1.1
  5.                                 
  6.                               By: Joe Thompson
  7.                                   8-2-92
  8.                               
  9.                          Compuserve ID: 71321,1177
  10.                          
  11.                      EET BBS Fido-net address 1:116/24        
  12.  
  13.                               615-325-7800
  14.  
  15.  
  16.  
  17.  
  18.  
  19.  
  20.                         Disclaimer and limit of liability
  21.  
  22.           Joe Thompson makes no warranty of any kind, either express 
  23.           or implied, including but not limited to implied warranties
  24.           of merchantability  and  fitness for a particular  purpose, 
  25.           with respect to this software.
  26.         
  27.           In no event shall  Joe Thompson  be  liable for any damages
  28.           (including damages for loss of business profits, business
  29.           interruption, or loss of business information) arising out of
  30.           the use of this software.
  31.  
  32.  
  33.  
  34.                                 Summary
  35.  
  36.           Master Explode is a simple Autocad ADS program to explode
  37.           a block without regard to its current scaling factors. In
  38.           other words it  will explode a  block whose scale factors
  39.           are say 1.5 in X, and  .75 in Y. This  is accomplished by
  40.           recreating each entity. Arcs and circles are approximated
  41.           with polylines as closely as possible. The program first
  42.           displays a prompt:
  43.  
  44.                         Scale factor <explode>:
  45.  
  46.           To explode a block simply hit return and select the block,
  47.           to adjust a blocks scale factor type S and return. That's
  48.           it the block is exploded and you are returned to Autocad.
  49.           
  50.               
  51.                 
  52.                                 Requirements
  53.  
  54.           This program requires Autocad rel 11 386 or above.
  55.  
  56.  
  57.                                Installation
  58.  
  59.           To begin the program it must first be loaded into Autocad.
  60.           This is accomplished by typing the Autolisp command:
  61.  
  62.                                 (xload "mexp")
  63.  
  64.           This command is required only once per Autocad drawing session.
  65.           Once the program is loaded it can be ran by typing:
  66.  
  67.                                      mexp
  68.  
  69.           The program may be loaded automaticaly at startup by making
  70.           the following modifications to your ACAD.lsp file.
  71.  
  72.                     (defun s::startup ()
  73.                         (xload "mexp"))
  74.                          
  75.           This should be the first set of lines in your ACAD.lsp file.
  76.           If you do not have an ACAD.lsp file a simple ASCII text file
  77.           with the above lines will do fine.
  78.